
			/* Fading animation */
			.fade
			{
				-webkit-animation-name: fade;
				-webkit-animation-duration: 1.0s;
				animation-name: fade;
				animation-duration: 1.0s;
			}
			
			@-webkit-keyframes fade
			{
				from {opacity: .4}
				to {opacity: 1}
			}
			
			@keyframes fade
			{
				from {opacity: .4}
				to {opacity: 1}
			}
			
			.mySlides
			{
				display: none;
			}
			
			.container
			{
				position: relative;
				width: 100%;
				max-width: 400px;
			}
			
			.container img
			{
				width: 100%;
				height: auto;
			}
			
			.btn, .btnL
			{
				position: absolute;
				top: 50%;
				left: 100%;
				transform: translate(-33px, -50%);
				-ms-transform: translate(-33px, -50%);
				background-color: #C0C0C0;
				color: white;
				font-size: 16px;
				padding: 0px;
				border: none;
				cursor: pointer;
				border-radius: 5px;
				text-align: center;
				width: 30px;
				height:96%;
				opacity: 0.5;
			}
			
			.btnL
			{
				top: 50%;
				left: 0%;
				transform: translate(3px, -50%);
				-ms-transform: translate(3px, -50%);
			}
			
			.btn:hover, .btnL:hover
			{
				opacity: 0.7;
			}
			
			.slideshow-container-right
			{
				float: right;
				width: 390px;
				margin: 0px;
				padding: 0px;
			}
			
			.slideshow-container-left
			{
				width: 390px;
				float: left;
			}
			
			.text-container-right
			{
				text-align: left;
				max-width: 780px;
				position: absolute;
				padding: 30px;
				height: 100%;
			}

			.text-container-left
			{
				position: relative;
				text-align: left;
				max-width: 1100px;
				left: 30px;
				padding: 30px;
			}